home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / rpclib / svc_udp.c < prev    next >
C/C++ Source or Header  |  1994-03-09  |  13KB  |  486 lines

  1. /*
  2.  * $Id: svc_udp.c,v 1.2 1993/11/14 16:37:43 jraja Exp $
  3.  *
  4.  * $Log: svc_udp.c,v $
  5.  * Revision 1.2  1993/11/14  16:37:43  jraja
  6.  * Fixed include. ANSI prototypes. Fixed types.
  7.  * AMITCP: close() to CloseSocket().
  8.  * AMITCP: cancelled EINTR handling.
  9.  *
  10.  */
  11. /* @(#)svc_udp.c    2.2 88/07/29 4.0 RPCSRC */
  12. /*
  13.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  14.  * unrestricted use provided that this legend is included on all tape
  15.  * media and as a part of the software program in whole or part.  Users
  16.  * may copy or modify Sun RPC without charge, but are not authorized
  17.  * to license or distribute it to anyone else except as part of a product or
  18.  * program developed by the user.
  19.  * 
  20.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  21.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  22.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  23.  * 
  24.  * Sun RPC is provided with no support and without any obligation on the
  25.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  26.  * modification or enhancement.
  27.  * 
  28.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  29.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  30.  * OR ANY PART THEREOF.
  31.  * 
  32.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  33.  * or profits or other special, indirect and consequential damages, even if
  34.  * Sun has been advised of the possibility of such damages.
  35.  * 
  36.  * Sun Microsystems, Inc.
  37.  * 2550 Garcia Avenue
  38.  * Mountain View, California  94043
  39.  */
  40. #if !defined(lint) && defined(SCCSIDS)
  41. static char sccsid[] = "@(#)svc_udp.c 1.24 87/08/11 Copyr 1984 Sun Micro";
  42. #endif
  43.  
  44. /*
  45.  * svc_udp.c,
  46.  * Server side for UDP/IP based RPC.  (Does some caching in the hopes of
  47.  * achieving execute-at-most-once semantics.)
  48.  *
  49.  * Copyright (C) 1984, Sun Microsystems, Inc.
  50.  */
  51.  
  52. #include <sys/param.h>
  53. #include <stdio.h>
  54. #include <rpc/rpc.h>
  55. #include <sys/socket.h>
  56. #include <errno.h>
  57.  
  58.  
  59. #define rpc_buffer(xprt) ((xprt)->xp_p1)
  60. #define MAX(a, b)     ((a > b) ? a : b)
  61.  
  62. static bool_t        svcudp_recv(SVCXPRT *xprt, struct rpc_msg *msg);
  63. static enum xprt_stat    svcudp_stat(SVCXPRT *xprt);
  64. static bool_t        svcudp_getargs(SVCXPRT *xprt, xdrproc_t xdr_args,
  65.                        void *args_ptr);
  66. static bool_t        svcudp_reply(SVCXPRT *xprt, struct rpc_msg *msg);
  67. static bool_t        svcudp_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args,
  68.                        void *args_ptr);
  69. static void        svcudp_destroy(SVCXPRT *xprt);
  70.  
  71. static struct xp_ops svcudp_op = {
  72.     svcudp_recv,
  73.     svcudp_stat,
  74.     svcudp_getargs,
  75.     svcudp_reply,
  76.     svcudp_freeargs,
  77.     svcudp_destroy
  78. };
  79.  
  80. extern int errno;
  81.  
  82. /*
  83.  * kept in xprt->xp_p2
  84.  */
  85. struct svcudp_data {
  86.     u_int   su_iosz;    /* byte size of send.recv buffer */
  87.     u_long    su_xid;        /* transaction id */
  88.     XDR    su_xdrs;    /* XDR handle */
  89.     char    su_verfbody[MAX_AUTH_BYTES];    /* verifier body */
  90.     char *     su_cache;    /* cached data, NULL if no cache */
  91. };
  92. #define    su_data(xprt)    ((struct svcudp_data *)(xprt->xp_p2))
  93.  
  94. /*
  95.  * Usage:
  96.  *    xprt = svcudp_create(sock);
  97.  *
  98.  * If sock<0 then a socket is created, else sock is used.
  99.  * If the socket, sock is not bound to a port then svcudp_create
  100.  * binds it to an arbitrary port.  In any (successful) case,
  101.  * xprt->xp_sock is the registered socket number and xprt->xp_port is the
  102.  * associated port number.
  103.  * Once *xprt is initialized, it is registered as a transporter;
  104.  * see (svc.h, xprt_register).
  105.  * The routines returns NULL if a problem occurred.
  106.  */
  107. SVCXPRT *
  108. svcudp_bufcreate(sock, sendsz, recvsz)
  109.     register int sock;
  110.     u_int sendsz, recvsz;
  111. {
  112.     bool_t madesock = FALSE;
  113.     register SVCXPRT *xprt;
  114.     register struct svcudp_data *su;
  115.     struct sockaddr_in addr;
  116. #ifdef AMITCP
  117.     long len = sizeof(struct sockaddr_in);
  118. #else
  119.     int len = sizeof(struct sockaddr_in);
  120. #endif
  121.  
  122.     if (sock == RPC_ANYSOCK) {
  123.         if ((sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
  124.             perror("svcudp_create: socket creation problem");
  125.             return ((SVCXPRT *)NULL);
  126.         }
  127.         madesock = TRUE;
  128.     }
  129.     bzero((char *)&addr, sizeof (addr));
  130.     addr.sin_family = AF_INET;
  131.     if (bindresvport(sock, &addr)) {
  132.         addr.sin_port = 0;
  133.         (void)bind(sock, (struct sockaddr *)&addr, len);
  134.     }
  135.     if (getsockname(sock, (struct sockaddr *)&addr, &len) != 0) {
  136.         perror("svcudp_create - cannot getsockname");
  137.         if (madesock)
  138. #ifdef AMITCP
  139.             (void)CloseSocket(sock);
  140. #else
  141.             (void)close(sock);
  142. #endif
  143.         return ((SVCXPRT *)NULL);
  144.     }
  145.     xprt = (SVCXPRT *)mem_alloc(sizeof(SVCXPRT));
  146.     if (xprt == NULL) {
  147.         (void)fprintf(stderr, "svcudp_create: out of memory\n");
  148.         return (NULL);
  149.     }
  150.     su = (struct svcudp_data *)mem_alloc(sizeof(*su));
  151.     if (su == NULL) {
  152.         (void)fprintf(stderr, "svcudp_create: out of memory\n");
  153.         return (NULL);
  154.     }
  155.     su->su_iosz = ((MAX(sendsz, recvsz) + 3) / 4) * 4;
  156.     if ((rpc_buffer(xprt) = mem_alloc(su->su_iosz)) == NULL) {
  157.         (void)fprintf(stderr, "svcudp_create: out of memory\n");
  158.         return (NULL);
  159.     }
  160.     xdrmem_create(
  161.         &(su->su_xdrs), rpc_buffer(xprt), su->su_iosz, XDR_DECODE);
  162.     su->su_cache = NULL;
  163.     xprt->xp_p2 = (caddr_t)su;
  164.     xprt->xp_verf.oa_base = su->su_verfbody;
  165.     xprt->xp_ops = &svcudp_op;
  166.     xprt->xp_port = ntohs(addr.sin_port);
  167.     xprt->xp_sock = sock;
  168.     xprt_register(xprt);
  169.     return (xprt);
  170. }
  171.  
  172. SVCXPRT *
  173. svcudp_create(int sock)
  174. {
  175.     return(svcudp_bufcreate(sock, UDPMSGSIZE, UDPMSGSIZE));
  176. }
  177.  
  178. static enum xprt_stat
  179. svcudp_stat(SVCXPRT *xprt)
  180. {
  181.     return (XPRT_IDLE); 
  182. }
  183.  
  184. static int cache_get(SVCXPRT *xprt, struct rpc_msg *msg,
  185.              char **replyp, u_long *replylenp);
  186.  
  187. static bool_t
  188. svcudp_recv(register SVCXPRT *xprt, struct rpc_msg *msg)
  189. {
  190.     register struct svcudp_data *su = su_data(xprt);
  191.     register XDR *xdrs = &(su->su_xdrs);
  192.     register int rlen;
  193.     char *reply;
  194.     u_long replylen;
  195.  
  196.     again:
  197.     xprt->xp_addrlen = sizeof(struct sockaddr_in);
  198.     rlen = recvfrom(xprt->xp_sock, rpc_buffer(xprt), (int) su->su_iosz,
  199.         0, (struct sockaddr *)&(xprt->xp_raddr), &(xprt->xp_addrlen));
  200. #ifndef AMITCP /* EINTR is returned in case of a CTRL-C by default */
  201.     if (rlen == -1 && errno == EINTR)
  202.         goto again;
  203. #endif
  204.     if (rlen < 4*sizeof(u_long))
  205.         return (FALSE);
  206.     xdrs->x_op = XDR_DECODE;
  207.     XDR_SETPOS(xdrs, 0);
  208.     if (! xdr_callmsg(xdrs, msg))
  209.         return (FALSE);
  210.     su->su_xid = msg->rm_xid;
  211.     if (su->su_cache != NULL) {
  212.         if (cache_get(xprt, msg, &reply, &replylen)) {
  213.             (void) sendto(xprt->xp_sock, reply, (int) replylen, 0,
  214.               (struct sockaddr *) &xprt->xp_raddr, xprt->xp_addrlen);
  215.             return (TRUE);
  216.         }
  217.     }
  218.     return (TRUE);
  219. }
  220.  
  221. static void cache_set(SVCXPRT *xprt, u_long replylen);
  222.  
  223. static bool_t
  224. svcudp_reply(register SVCXPRT *xprt, struct rpc_msg *msg)
  225. {
  226.     register struct svcudp_data *su = su_data(xprt);
  227.     register XDR *xdrs = &(su->su_xdrs);
  228.     register int slen;
  229.     register bool_t stat = FALSE;
  230.  
  231.     xdrs->x_op = XDR_ENCODE;
  232.     XDR_SETPOS(xdrs, 0);
  233.     msg->rm_xid = su->su_xid;
  234.     if (xdr_replymsg(xdrs, msg)) {
  235.         slen = (int)XDR_GETPOS(xdrs);
  236.         if (sendto(xprt->xp_sock, rpc_buffer(xprt), slen, 0,
  237.             (struct sockaddr *)&(xprt->xp_raddr), xprt->xp_addrlen)
  238.             == slen) {
  239.             stat = TRUE;
  240.             if (su->su_cache && slen >= 0) {
  241.                 cache_set(xprt, (u_long) slen);
  242.             }
  243.         }
  244.     }
  245.     return (stat);
  246. }
  247.  
  248. static bool_t
  249. svcudp_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, void * args_ptr)
  250. {
  251.     return ((*xdr_args)(&(su_data(xprt)->su_xdrs), args_ptr));
  252. }
  253.  
  254. static bool_t
  255. svcudp_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, void * args_ptr)
  256. {
  257.     register XDR *xdrs = &(su_data(xprt)->su_xdrs);
  258.  
  259.     xdrs->x_op = XDR_FREE;
  260.     return ((*xdr_args)(xdrs, args_ptr));
  261. }
  262.  
  263. static void
  264. svcudp_destroy(register SVCXPRT *xprt)
  265. {
  266.     register struct svcudp_data *su = su_data(xprt);
  267.  
  268.     xprt_unregister(xprt);
  269. #ifdef AMITCP
  270.     (void)CloseSocket(xprt->xp_sock);
  271. #else
  272.     (void)close(xprt->xp_sock);
  273. #endif
  274.     XDR_DESTROY(&(su->su_xdrs));
  275.     mem_free(rpc_buffer(xprt), su->su_iosz);
  276.     mem_free((caddr_t)su, sizeof(struct svcudp_data));
  277.     mem_free((caddr_t)xprt, sizeof(SVCXPRT));
  278. }
  279.  
  280.  
  281. /***********this could be a separate file*********************/
  282.  
  283. /*
  284.  * Fifo cache for udp server
  285.  * Copies pointers to reply buffers into fifo cache
  286.  * Buffers are sent again if retransmissions are detected.
  287.  */
  288.  
  289. #define SPARSENESS 4    /* 75% sparse */
  290.  
  291. #define CACHE_PERROR(msg)    \
  292.     (void) fprintf(stderr,"%s\n", msg)
  293.  
  294. #define ALLOC(type, size)    \
  295.     (type *) mem_alloc((unsigned) (sizeof(type) * (size)))
  296.  
  297. #define BZERO(addr, type, size)     \
  298.     bzero((char *) addr, sizeof(type) * (int) (size)) 
  299.  
  300. /*
  301.  * An entry in the cache
  302.  */
  303. typedef struct cache_node *cache_ptr;
  304. struct cache_node {
  305.     /*
  306.      * Index into cache is xid, proc, vers, prog and address
  307.      */
  308.     u_long cache_xid;
  309.     u_long cache_proc;
  310.     u_long cache_vers;
  311.     u_long cache_prog;
  312.     struct sockaddr_in cache_addr;
  313.     /*
  314.      * The cached reply and length
  315.      */
  316.     char * cache_reply;
  317.     u_long cache_replylen;
  318.     /*
  319.       * Next node on the list, if there is a collision
  320.      */
  321.     cache_ptr cache_next;    
  322. };
  323.  
  324.  
  325.  
  326. /*
  327.  * The entire cache
  328.  */
  329. struct udp_cache {
  330.     u_long uc_size;        /* size of cache */
  331.     cache_ptr *uc_entries;    /* hash table of entries in cache */
  332.     cache_ptr *uc_fifo;    /* fifo list of entries in cache */
  333.     u_long uc_nextvictim;    /* points to next victim in fifo list */
  334.     u_long uc_prog;        /* saved program number */
  335.     u_long uc_vers;        /* saved version number */
  336.     u_long uc_proc;        /* saved procedure number */
  337.     struct sockaddr_in uc_addr; /* saved caller's address */
  338. };
  339.  
  340.  
  341. /*
  342.  * the hashing function
  343.  */
  344. #define CACHE_LOC(transp, xid)    \
  345.  (xid % (SPARSENESS*((struct udp_cache *) su_data(transp)->su_cache)->uc_size))    
  346.  
  347.  
  348. /*
  349.  * Enable use of the cache. 
  350.  * Note: there is no disable.
  351.  */
  352. int
  353. svcudp_enablecache(SVCXPRT *transp, u_long size)
  354. {
  355.     struct svcudp_data *su = su_data(transp);
  356.     struct udp_cache *uc;
  357.  
  358.     if (su->su_cache != NULL) {
  359.         CACHE_PERROR("enablecache: cache already enabled");
  360.         return(0);    
  361.     }
  362.     uc = ALLOC(struct udp_cache, 1);
  363.     if (uc == NULL) {
  364.         CACHE_PERROR("enablecache: could not allocate cache");
  365.         return(0);
  366.     }
  367.     uc->uc_size = size;
  368.     uc->uc_nextvictim = 0;
  369.     uc->uc_entries = ALLOC(cache_ptr, size * SPARSENESS);
  370.     if (uc->uc_entries == NULL) {
  371.         CACHE_PERROR("enablecache: could not allocate cache data");
  372.         return(0);
  373.     }
  374.     BZERO(uc->uc_entries, cache_ptr, size * SPARSENESS);
  375.     uc->uc_fifo = ALLOC(cache_ptr, size);
  376.     if (uc->uc_fifo == NULL) {
  377.         CACHE_PERROR("enablecache: could not allocate cache fifo");
  378.         return(0);
  379.     }
  380.     BZERO(uc->uc_fifo, cache_ptr, size);
  381.     su->su_cache = (char *) uc;
  382.     return(1);
  383. }
  384.  
  385.  
  386. /*
  387.  * Set an entry in the cache
  388.  */
  389. static void
  390. cache_set(SVCXPRT *xprt, u_long replylen)
  391. {
  392.     register cache_ptr victim;    
  393.     register cache_ptr *vicp;
  394.     register struct svcudp_data *su = su_data(xprt);
  395.     struct udp_cache *uc = (struct udp_cache *) su->su_cache;
  396.     u_int loc;
  397.     char *newbuf;
  398.  
  399.     /*
  400.       * Find space for the new entry, either by
  401.      * reusing an old entry, or by mallocing a new one
  402.      */
  403.     victim = uc->uc_fifo[uc->uc_nextvictim];
  404.     if (victim != NULL) {
  405.         loc = CACHE_LOC(xprt, victim->cache_xid);
  406.         for (vicp = &uc->uc_entries[loc]; 
  407.           *vicp != NULL && *vicp != victim; 
  408.           vicp = &(*vicp)->cache_next) 
  409.                 ;
  410.         if (*vicp == NULL) {
  411.             CACHE_PERROR("cache_set: victim not found");
  412.             return;
  413.         }
  414.         *vicp = victim->cache_next;    /* remote from cache */
  415.         newbuf = victim->cache_reply;
  416.     } else {
  417.         victim = ALLOC(struct cache_node, 1);
  418.         if (victim == NULL) {
  419.             CACHE_PERROR("cache_set: victim alloc failed");
  420.             return;
  421.         }
  422.         newbuf = mem_alloc(su->su_iosz);
  423.         if (newbuf == NULL) {
  424.             CACHE_PERROR("cache_set: could not allocate new rpc_buffer");
  425.             return;
  426.         }
  427.     }
  428.  
  429.     /*
  430.      * Store it away
  431.      */
  432.     victim->cache_replylen = replylen;
  433.     victim->cache_reply = rpc_buffer(xprt);
  434.     rpc_buffer(xprt) = newbuf;
  435.     xdrmem_create(&(su->su_xdrs), rpc_buffer(xprt), su->su_iosz, XDR_ENCODE);
  436.     victim->cache_xid = su->su_xid;
  437.     victim->cache_proc = uc->uc_proc;
  438.     victim->cache_vers = uc->uc_vers;
  439.     victim->cache_prog = uc->uc_prog;
  440.     victim->cache_addr = uc->uc_addr;
  441.     loc = CACHE_LOC(xprt, victim->cache_xid);
  442.     victim->cache_next = uc->uc_entries[loc];    
  443.     uc->uc_entries[loc] = victim;
  444.     uc->uc_fifo[uc->uc_nextvictim++] = victim;
  445.     uc->uc_nextvictim %= uc->uc_size;
  446. }
  447.  
  448. /*
  449.  * Try to get an entry from the cache
  450.  * return 1 if found, 0 if not found
  451.  */
  452. static int 
  453. cache_get(SVCXPRT *xprt, struct rpc_msg *msg,
  454.       char **replyp, u_long *replylenp)
  455. {
  456.     u_int loc;
  457.     register cache_ptr ent;
  458.     register struct svcudp_data *su = su_data(xprt);
  459.     register struct udp_cache *uc = (struct udp_cache *) su->su_cache;
  460.  
  461. #    define EQADDR(a1, a2)    (bcmp((char*)&a1, (char*)&a2, sizeof(a1)) == 0)
  462.  
  463.     loc = CACHE_LOC(xprt, su->su_xid);
  464.     for (ent = uc->uc_entries[loc]; ent != NULL; ent = ent->cache_next) {
  465.         if (ent->cache_xid == su->su_xid &&
  466.           ent->cache_proc == uc->uc_proc &&
  467.           ent->cache_vers == uc->uc_vers &&
  468.           ent->cache_prog == uc->uc_prog &&
  469.           EQADDR(ent->cache_addr, uc->uc_addr)) {
  470.             *replyp = ent->cache_reply;
  471.             *replylenp = ent->cache_replylen;
  472.             return(1);
  473.         }
  474.     }
  475.     /*
  476.      * Failed to find entry
  477.      * Remember a few things so we can do a set later
  478.      */
  479.     uc->uc_proc = msg->rm_call.cb_proc;
  480.     uc->uc_vers = msg->rm_call.cb_vers;
  481.     uc->uc_prog = msg->rm_call.cb_prog;
  482.     uc->uc_addr = xprt->xp_raddr;
  483.     return(0);
  484. }
  485.  
  486.